home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-11-03 | 379 b | 15 lines | [TEXT/dIsR] |
- script DelayNext
- -- Execution begins at the first state-- "one" in this case
- state one
- display "I'll wait ten seconds and then go to the next state";
- delay 10;
- next two;
- display "This statement never gets executed";
- end;
-
- state two
- display "I am at state two";
- end; -- Script terminates when it hits state "end"
-
- end;
-